home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <!--AviSynth plugin description version 1.1--> <plugin name="FluxSmooth"> <description>Fluctuating pixels are wiped from existence by averaging it with its neighbours.</description> <filters> <filter name="FluxSmoothST" category="Spatio-Temporal Smoothers" helpfile="fluxsmooth" type="clip"> <description>... in a spatio-temporal way.</description> <colorspaces> <colorspace>yv12</colorspace> <colorspace>yuy2</colorspace> </colorspaces> <parameters> <parameter name="clip" type="clip" default="" max="0" min="0" step="0" optional="False" paramList="False"> <description /> <items /> </parameter> <parameter name="temporal_threshold" type="int" default="7" max="0" min="0" step="0" optional="True" paramList="False"> <description>Temporal neighbour pixels within this threshold from the current pixel are included in the average. If set to -1, no spatial smoothing occurs.</description> <items /> </parameter> <parameter name="spatial_threshold" type="int" default="7" max="0" min="0" step="0" optional="True" paramList="False"> <description>Spatial neighbour pixels within this threshold from the current pixel are included in the average. If set to -1, no spatial smoothing occurs.</description> <items /> </parameter> </parameters> </filter> <filter name="FluxSmoothT" category="Temporal Smoothers" helpfile="fluxsmooth" type="clip"> <description>... in a temporal way.</description> <colorspaces> <colorspace>yv12</colorspace> <colorspace>yuy2</colorspace> </colorspaces> <parameters> <parameter name="clip" type="clip" default="" max="0" min="0" step="0" optional="True" paramList="False"> <description /> <items /> </parameter> <parameter name="temporal_threshold" type="int" default="7" max="0" min="-1" step="0" optional="True" paramList="False"> <description>Temporal neighbour pixels within this threshold from the current pixel are included in the average. If set to -1, no spatial smoothing occurs.</description> <items /> </parameter> </parameters> </filter> </filters> </plugin>